home *** CD-ROM | disk | FTP | other *** search
/ ftp.mactech.com 2010 / ftp.mactech.com.tar / ftp.mactech.com / machack / Hacks97 / WarriorsProgress.sit / Warrior’s Progress / source code / Source / Libraries / Events / Event Classes / High Level Events / HighLevelEvent.h < prev    next >
Text File  |  1997-06-28  |  282b  |  21 lines

  1. // HighLevelEvent.h
  2.  
  3. #ifndef HighLevelEvent_h
  4. #define HighLevelEvent_h
  5.  
  6. #ifndef Event_h
  7. #include "Event.h"
  8. #endif
  9.  
  10. class HighLevelEvent: public Event
  11.   {
  12.     public:
  13.         HighLevelEvent( const EventRecord& event )
  14.             : Event( event )
  15.             {}
  16.         
  17.         virtual void Respond() const;
  18.   };
  19.  
  20. #endif
  21.